Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/

index.html /cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/index.html
378 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Dot Connect Four</title>
<link rel='stylesheet' hre
script.js /cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/script.js
224 Views
0 Comments
const initialState = {
player: 'yellow',
winner: false,
board: [[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0
style.css /cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/style.css
162 Views
0 Comments
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}